home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / quicktimeintro / wiredsprites / common files / macprefix.h < prev    next >
Encoding:
Text File  |  2000-10-06  |  685 b   |  48 lines

  1. //////////
  2. //
  3. //    File:        MacPrefix.h
  4. //
  5. //    Contains:    Prefix file for our Macintosh projects.
  6. //
  7. //    Written by:    Tim Monroe
  8. //
  9. //    Copyright:    © 1999 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //    Change History (most recent first):
  12. //       
  13. //       <1>         11/11/99    rtm        first file
  14. //
  15. //////////
  16.  
  17. #ifndef __Prefix_File__
  18. #define __Prefix_File__
  19.  
  20.  
  21. //////////
  22. //
  23. // header files
  24. //
  25. //////////
  26.  
  27. #define TARGET_API_MAC_CARBON            1
  28.  
  29. #include <ConditionalMacros.h>
  30.  
  31.  
  32. //////////
  33. //
  34. // compiler macros
  35. //
  36. //////////
  37.  
  38. #ifndef PASCAL_RTN
  39. #define PASCAL_RTN                        pascal
  40. #endif
  41.  
  42. #if TARGET_CPU_PPC
  43. #define SOUNDSPROCKET_AVAIL                1
  44. #else
  45. #define SOUNDSPROCKET_AVAIL                0
  46. #endif
  47.  
  48. #endif // __Prefix_File__